set Range
fun setRange(startIndex: Int, endIndex: Int, value: String): StringBuilder
Content copied to clipboard
Replaces characters in the specified range of this string builder with characters in the specified string value and returns this instance.
Since Kotlin
1.4
Parameters
start Index
the beginning (inclusive) of the range to replace.
end Index
the end (exclusive) of the range to replace.
value
the string to replace with.
Throws
or IllegalArgumentException if startIndex is less than zero, greater than the length of this string builder, or startIndex > endIndex
.